home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 07 - 1991 / 07.01 Jan 91 / FlexAlert / FlexAlert Code / FlexAlert.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-04-09  |  314 b   |  15 lines  |  [TEXT/KAHL]

  1. /* FlexAlert.h - sizes Alert windows to fit the text etc.
  2. Include this file wherever you call FlexAlert().
  3. For usage see FlexAlert.c.
  4. */
  5.  
  6. #ifndef _FlexAlert_
  7. #define _FlexAlert_
  8. enum
  9.     {
  10.     justOK, okCancel, cancelOK, makeItanInt = 512
  11.     };
  12.  
  13. int FlexAlert(int buttonMode, int whichIcon, Ptr csPtr);
  14.  
  15. #endif _FlexAlert_